/* CONTENEDOR GENERAL */
.eci-t0-box{
    width:100%;
    height:280px;
    overflow:hidden;
    border-left:3px solid #2b8cc4;
}

/* SCROLL HORIZONTAL */
.eci-t0-scroll{
    width:100%;
    height:100%;
    overflow:auto;
}

/* TABLA */
.eci-t0-table{
    border-collapse:collapse;
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    font-size:12px;
}

/* CABECERA */
.eci-t0-table thead{
    background:#4a4a4a;
    color:white;
}

.eci-t0-table th{
    padding:4px 6px;
    text-align:left;
    font-weight:600;
    font-size:12px;
    border-right:1px solid #666;
    white-space:nowrap;
}

/* FILAS */
.eci-t0-table td{
    padding:4px 6px;
    border-right:1px solid #ddd;
    vertical-align:top;
    font-size:11px;
    line-height:1.2;
}

/* HOVER */
.eci-t0-table tr:hover{
    background:#f2f2f2;
}

/* ANCHOS DE COLUMNAS */
.eci-t0-table th:nth-child(1),
.eci-t0-table td:nth-child(1){
    width:70px;        /* plantilla */
}

.eci-t0-table th:nth-child(2),
.eci-t0-table td:nth-child(2){
    width:200px;       /* asunto */
}

.eci-t0-table th:nth-child(3),
.eci-t0-table td:nth-child(3){
    width:220px;       /* envio */
}

.eci-t0-table th:nth-child(4),
.eci-t0-table td:nth-child(4){
    width:90px;        /* envio cc */
}

.eci-t0-table th:nth-child(5),
.eci-t0-table td:nth-child(5){
    width:420px;       /* descripcion */
}

/* TEXTO LARGO */
.eci-t0-table td{
    word-break:break-word;
}